type net/http.atomicBool

10 uses

	net/http (current package)
		client.go#L395: 	var timedOut atomicBool
		server.go#L435: 	canWriteContinue atomicBool
		server.go#L473: 	handlerDone atomicBool // set true when the handler exits
		server.go#L524: type atomicBool int32
		server.go#L526: func (b *atomicBool) isSet() bool { return atomic.LoadInt32((*int32)(b)) != 0 }
		server.go#L527: func (b *atomicBool) setTrue()    { atomic.StoreInt32((*int32)(b), 1) }
		server.go#L528: func (b *atomicBool) setFalse()   { atomic.StoreInt32((*int32)(b), 0) }
		server.go#L895: 	closed     atomicBool
		server.go#L896: 	sawEOF     atomicBool
		server.go#L2657: 	inShutdown atomicBool // true when server is in shutdown